home *** CD-ROM | disk | FTP | other *** search
- HOME=/; export HOME
- PATH=/etc:/usr/etc:/bin:/usr/bin:/usr/ucb; export PATH
-
- # Read in configuration information
- . /etc/hostconfig
- case $? in
- 0)
- ;;
- *)
- (echo "Error reading hostconfig") >/dev/console
- exit 1
- ;;
- esac
-
- ifconfigerror=0
- MOUNTD_PID=`ps ax | grep "rpc.mountd" | grep -v grep | sort -n | head -1 | awk '{ print $1 }'`
- if [ "$MOUNTD_PID" = "" ]; then
- /usr/etc/rpc.mountd >/dev/console
- fi
-
- NFSD_PID=`ps ax | grep "nfsd" | grep -v grep | sort -n | head -1 | awk '{ print $1 }'`
- if [ "$NFSD_PID" = "" ]; then
- /usr/etc/nfsd 6 >/dev/console
- fi
-
- /usr/etc/exportfs -a
-
- exit 0
-